home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000019_news@newsmaster….columbia.edu _Thu Dec 17 19:26:55 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id TAA10005
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 17 Dec 1998 19:26:54 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id TAA11295
  7.     for kermit.misc@watsun; Thu, 17 Dec 1998 19:26:53 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: K95 and sending straight binary.
  12. Date: 18 Dec 1998 00:26:51 GMT
  13. Organization: Columbia University
  14. Lines: 52
  15. Message-ID: <75c7gb$bn3$1@apakabar.cc.columbia.edu>
  16. References: <36799C19.3E54D6E6@breastscreenDOT.orgDOT.au>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9651
  19.  
  20. In article <36799C19.3E54D6E6@breastscreenDOT.orgDOT.au>,
  21. Ross Irvine  <rirvine@breastscreenDOT.orgDOT.au> wrote:
  22. : I wrote a script about 12 months ago (using kermit for dos) which
  23. : upgrades the firmware on some ISDN Modems I look after. This allows me
  24. : to remote upgrade the firmware on them, whenever I want.
  25. : The flash processes forces me to send the flash file in binary format with
  26. : no x-fer protocol.  Eg Just sending the file straight. Here's the code I
  27. : used on the DOS Machine..
  28. : :START_FLASH
  29. :         SET FILE TYPE BINARY                    ; \
  30. :         SET TRANSMIT PROMPT \0                  ;  \ Enables Kermit to
  31. :         SET TRANSMIT LINE-FEEDS-SENT ON         ;  / send RAW ASCII
  32. :         SET FLOW-CONTROL XON/XOFF               ; /
  33. :         TRANSMIT \%f                    ; Send the Flash File
  34. It's not exactly "raw ASCII" -- it's really just raw 8-bit binary data.
  35.  
  36. : I'm now tried to port this to kermit 95, but I'm have a hard time getting
  37. : K95 to send raw ASCII.  I know the the SET TRANSMIT LINE-FEEDS-SEND ON has
  38. : been changed to SET TRANSMIT LINEFEED ON
  39. : Buit I still cannot seem to get K95 (Version 1.1.17) to send just plain
  40. : RAW ASCII..
  41. This should work:
  42.  
  43. :START_FLASH
  44.  
  45.   EIGHTBIT
  46.   SET FILE TYPE BINARY
  47.   SET FLOW-CONTROL XON/XOFF
  48.   TRANSMIT \%f
  49.  
  50. If that doesn't work, use SET FLOW NONE.  If that results in overruns,
  51. add SET TRANSMIT PAUSE <msec> (to pause between each byte) or use a slower
  52. serial speed.
  53.  
  54. : Also on the topic of K95. Will we ever see the much awaited Native (Eg
  55. : GUI) Version of K95? All has been very quiet at www.kermit-project.org
  56. : for the last 6 months..
  57. We've been working hard.  There will be major releases of K95 and C-Kermit
  58. soon.  The new release of K95 will not be the GUI, but it will be the final
  59. major release before the GUI release.
  60.  
  61. It's a lot of work.
  62.  
  63. By the way, K95 *is* fully native.
  64.  
  65. - Frank